home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / ODF / AMSample / Sources / AMSample.hpp next >
Encoding:
Text File  |  1996-06-03  |  1.4 KB  |  80 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //
  3. //    File:                AMSample.hpp
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef AMSample_HPP
  11. #define AMSample_HPP
  12.  
  13. #if !defined(FW_BUILD_MAC)
  14.  
  15. // ----- Foundation Includes -----
  16.  
  17. #include "FWCommon.h"
  18. #include "FWTaskG.h"
  19. #include "FWDebug.h"
  20. #include "FWExcLib.h"
  21. #include "FWCollec.h"
  22. #include "FWRefCnt.h"
  23. #include "FWMemory.h"
  24. #include "FWNotifn.h"
  25. #include "FWRunTyp.h"
  26. #include "FWStream.h"
  27. #include "FWString.h"
  28.  
  29. // ----- OS Includes -----
  30.  
  31. #ifndef FWPOINT_H
  32. #include "FWPoint.h"
  33. #endif
  34.  
  35. #ifndef FWRECT_H
  36. #include "FWRect.h"
  37. #endif
  38.  
  39. #ifndef FWODGEOM_H
  40. #include "FWODGeom.h"
  41. #endif
  42.  
  43. // ----- OpenDoc Includes -----
  44.  
  45. #ifndef FWODTYPS_H
  46. #include "FWODTyps.h"
  47. #endif
  48.  
  49. #ifndef SOM_ODDragAndDrop_xh
  50. #include <DragDrp.xh>
  51. #endif
  52.  
  53. #ifndef SOM_Module_OpenDoc_StdProps_defined
  54. #include <StdProps.xh>
  55. #endif
  56.  
  57. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  58. #include <StdTypes.xh>
  59. #endif
  60.  
  61. #ifndef SOM_ODStorageUnit_xh
  62. #include <StorageU.xh>
  63. #endif
  64.  
  65. #ifndef SOM_ODShape_xh
  66. #include <Shape.xh>
  67. #endif
  68.  
  69. #ifndef SOM_ODTransform_xh
  70. #include <Trnsform.xh>
  71. #endif
  72.  
  73. #ifndef SOM_ODSession_xh
  74. #include <ODSessn.xh>
  75. #endif
  76.  
  77. #endif
  78.  
  79. #endif // AMSample_HPP
  80.